home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Mac Game Programming Gurus / TricksOfTheMacGameProgrammingGurus.iso / More Source / C⁄C++ / AIFF DSP v22 / plugin_src / null.c < prev    next >
Text File  |  1995-01-30  |  322b  |  24 lines

  1. /* null.c: does nothing */
  2.  
  3. #include "plugin_specific.h"
  4.  
  5. void init_process_null( void )
  6. {
  7. }
  8.  
  9. void term_process_null( void )
  10. {
  11. }
  12.  
  13. void process_samdat_null( long buflen ) 
  14. {
  15. }
  16.  
  17. plugin_info plugin_null = {
  18.    init_process_null,
  19.    term_process_null,
  20.    process_samdat_null,
  21.    1, /* take_input */
  22.    0  /* make_output */
  23. };
  24.